/* =====================================================
   MEGA 100 FM
   PREMIUM WEBSITE CSS - PART 1
   HERO + NAVIGATION + LIVE STREAM
===================================================== */


/* GOOGLE FONT */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');


/* =====================================================
   ROOT COLORS
===================================================== */

:root{

    --blue:#0047C8;
    --blue-light:#0B63FF;
    --yellow:#FFD400;
    --dark:#040816;
    --text:#FFFFFF;
    --gray:#B8C0CF;

}


/* =====================================================
   RESET
===================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat',sans-serif;
    background:#000;
    color:#fff;
    overflow-x:hidden;
}

img{
    display:block;
    max-width:100%;
}

a{
    text-decoration:none;
}

button{
    cursor:pointer;
    font-family:inherit;
}

section{
    padding:100px 80px;
}


/* =====================================================
   SOCIAL SIDEBAR
===================================================== */

.social-sidebar{

    position:fixed;
    left:25px;
    top:50%;
    transform:translateY(-50%);
    display:flex;
    flex-direction:column;
    gap:15px;
    z-index:9999;

}

.social-sidebar a{

    width:55px;
    height:55px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(255,255,255,.08);

    border-radius:16px;

    color:white;
    font-size:20px;

    transition:.3s;

}

.social-sidebar a:hover{

    background:var(--yellow);
    color:black;

    transform:translateX(5px);

}


/* =====================================================
   HERO SECTION
===================================================== */

.hero{

    min-height:100vh;

    position:relative;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:0 80px;

    background:
    linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.85)
    ),
    url("ChatGPT Image Jul 1, 2026, 05_14_41 PM.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

}


/* =====================================================
   NAVBAR
===================================================== */

header{

    position:absolute;

    top:25px;
    left:50%;

    transform:translateX(-50%);

    width:92%;
    height:90px;

    padding:0 35px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    border-radius:18px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    border:
    1px solid rgba(255,255,255,.10);

}


/* LOGO */

.logo img{

    width:210px;
    height:auto;

}


/* NAVIGATION */

nav{

    display:flex;
    gap:35px;

}

nav a{

    color:white;

    font-size:15px;
    font-weight:600;

    transition:.3s;

}

nav a:hover{

    color:var(--yellow);

}


/* DOWNLOAD BUTTON */

.download-btn{

    padding:15px 28px;

    border:none;

    border-radius:12px;

    background:var(--yellow);

    color:black;

    font-weight:800;

    transition:.3s;

}

.download-btn:hover{

    transform:translateY(-3px);

}


/* =====================================================
   HERO CONTENT
===================================================== */

.hero-content{

    max-width:850px;

    text-align:center;

}

.hero-content h1{

    font-size:90px;

    font-weight:900;

    margin-bottom:10px;

}

.hero-content h2{

    font-size:34px;

    color:var(--yellow);

    margin-bottom:25px;

}

.hero-content p{

    max-width:750px;

    margin:auto;

    color:var(--gray);

    line-height:1.8;


    font-size:20px;

    margin-bottom:40px;

}


/* HERO BUTTONS */

.hero-buttons{

    display:flex;
    justify-content:center;
    gap:20px;

}

.listen-btn{

    padding:18px 35px;

    border-radius:14px;

    background:var(--yellow);

    color:black;

    font-weight:800;

}

.shows-btn{

    padding:18px 35px;

    border-radius:14px;

    border:2px solid white;

    color:white;

}

.listen-btn,
.shows-btn{

    transition:.3s;

}

.listen-btn:hover,
.shows-btn:hover{

    transform:translateY(-4px);

}


/* =====================================================
   FLOATING PANEL
===================================================== */

.floating-panel{

    position:absolute;

    right:45px;
    bottom:60px;

    width:260px;

    padding:30px;

    border-radius:24px;

    background:
    rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    border:
    1px solid rgba(255,255,255,.10);

}

.live-box{

    background:#DC2626;

    padding:10px;

    text-align:center;

    border-radius:10px;

    font-weight:700;

    margin-bottom:20px;

}

.frequency{

    text-align:center;

    font-size:42px;

    font-weight:900;

    color:var(--yellow);

    margin-bottom:20px;

}

.floating-panel button{

    width:100%;

    padding:14px;

    border:none;

    border-radius:12px;

    margin-bottom:12px;

    background:var(--blue);

    color:white;

    font-weight:700;

    transition:.3s;

}

.floating-panel button:hover{

    background:var(--yellow);

    color:black;

}


/* =====================================================
   LIVE STREAM SECTION
===================================================== */

.live-player{

    background:#02081A;

    text-align:center;

}

.live-player h2{

    font-size:48px;

    font-weight:900;

    margin-bottom:15px;

}

.live-player p{

    color:var(--gray);

    margin-bottom:30px;

}

.live-player audio{

    width:100%;
    max-width:850px;

}

/* =====================================================
   PRESENTERS SECTION
===================================================== */

.presenters{

    background:#050816;

}

.presenters h2{

    text-align:center;

    font-size:52px;

    font-weight:900;

    margin-bottom:60px;

}

.presenter-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:35px;

}

.presenter-card{

    background:
    rgba(255,255,255,.04);

    border-radius:24px;

    overflow:hidden;

    border:
    1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.presenter-card:hover{

    transform:translateY(-8px);

    border-color:var(--yellow);

}

.presenter-card img{

    width:100%;

    height:420px;

    object-fit:cover;

}

.presenter-card h3{

    padding:25px 25px 10px;

    font-size:28px;

    font-weight:800;

}

.presenter-card p{

    padding:0 25px 30px;

    color:var(--gray);

    line-height:1.6;

}


/* =====================================================
   SHOWS SECTION
===================================================== */

.shows{

    background:#02081A;

}

.shows h2{

    text-align:center;

    font-size:52px;

    font-weight:900;

    margin-bottom:60px;

}

.show-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

.show-card{

    background:
    rgba(255,255,255,.05);

    padding:35px;

    border-radius:22px;

    border-left:
    6px solid var(--yellow);

    transition:.3s;

}

.show-card:hover{

    transform:translateY(-8px);

}

.show-card h3{

    font-size:26px;

    font-weight:800;

    margin-bottom:15px;

}

.show-time{

    color:var(--yellow);

    font-weight:700;

    margin-bottom:15px;

}

.show-card p{

    color:var(--gray);

    line-height:1.8;

}


/* =====================================================
   PODCASTS SECTION
===================================================== */

.podcasts{

    background:#050816;

}

.podcasts h2{

    text-align:center;

    font-size:52px;

    font-weight:900;

    margin-bottom:60px;

}

.podcast-grid{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.podcast-card{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    background:
    rgba(255,255,255,.05);

    padding:30px;

    border-radius:22px;

    border:
    1px solid rgba(255,255,255,.08);

}

.podcast-info h3{

    font-size:24px;

    margin-bottom:10px;

}

.podcast-info p{

    color:var(--gray);

    line-height:1.7;

}

.podcast-card button{

    padding:14px 28px;

    border:none;

    border-radius:12px;

    background:var(--blue);

    color:white;

    font-weight:700;

    transition:.3s;

}

.podcast-card button:hover{

    background:var(--yellow);

    color:black;

}


/* =====================================================
   FOOTER
===================================================== */

footer{

    background:#000;

    padding:80px;

    border-top:
    3px solid var(--yellow);

}

.footer-container{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:40px;

}

.footer-logo{

    width:180px;

    margin-bottom:20px;

}

.footer-column h3{

    margin-bottom:20px;

    color:var(--yellow);

}

.footer-column p{

    color:var(--gray);

    line-height:1.8;

}

.footer-column ul{

    list-style:none;

}

.footer-column ul li{

    margin-bottom:15px;

    color:var(--gray);

}

.footer-column ul li a{

    color:var(--gray);

    transition:.3s;

}

.footer-column ul li a:hover{

    color:var(--yellow);

}

.footer-social{

    display:flex;

    gap:15px;

}

.footer-social a{

    width:50px;

    height:50px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:14px;

    background:
    rgba(255,255,255,.08);

    color:white;

    font-size:20px;

    transition:.3s;

}

.footer-social a:hover{

    background:var(--yellow);

    color:black;

}

.copyright{

    text-align:center;

    margin-top:50px;

    padding-top:30px;

    border-top:
    1px solid rgba(255,255,255,.08);

}

.copyright p{

    color:var(--gray);

}


/* =====================================================
   FLOATING WHATSAPP BUTTON
===================================================== */

.whatsapp-float{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#25D366;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:32px;

    z-index:9999;

    box-shadow:
    0 10px 25px rgba(0,0,0,.3);

    transition:.3s;

}

.whatsapp-float:hover{

    transform:scale(1.08);

}


/* =====================================================
   TABLET
===================================================== */

@media(max-width:1100px){

    nav{

        display:none;

    }

    .hero-content h1{

        font-size:60px;

    }

    .floating-panel{

        display:none;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:768px){

    section{

        padding:80px 25px;

    }

    header{

        width:95%;

        padding:0 20px;

    }

    .logo img{

        width:150px;

    }

    .social-sidebar{

        display:none;

    }

    .hero-content h1{

        font-size:42px;

    }

    .hero-content h2{

        font-size:22px;

    }

    .hero-content p{

        font-size:16px;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .podcast-card{

        flex-direction:column;

        text-align:center;

    }

    .presenters h2,
    .shows h2,
    .podcasts h2{

        font-size:34px;

    }

    footer{

        padding:50px 25px;

    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media(max-width:480px){

    .hero-content h1{

        font-size:34px;

    }

    .hero-content h2{

        font-size:18px;

    }

    .show-card h3{

        font-size:22px;

    }

    .presenter-card h3{

        font-size:22px;

    }

}